home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat1 / slash.1 < prev    next >
Text File  |  1999-09-16  |  689b  |  67 lines

  1.  
  2.  
  3.  
  4. /(1)                           Scilab Function                           /(1)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   / - right division and feed back
  13.  
  14. DESCRIPTION
  15.   Right division.  x=A / b is the solution of x*A=b .
  16.  
  17.   b/a = (a' \ b')' .
  18.  
  19.   a ./  b is the matrix with entries a(i,j)/ b(i,j).  If b is scalar (1x1
  20.   matrix) this operation is the same as  a./b*ones(a). (Same convention if a
  21.   is a scalar).
  22.  
  23.   Backslash stands for left division.
  24.  
  25.   System feed back.  S=G/.K evaluates S=G*(eye+K*G)^(-1) this operator avoid
  26.   simplification problem.
  27.  
  28.   Comment // comments a line i.e lines which begin by // are ignored by the
  29.   interpreter.
  30.  
  31. SEE ALSO
  32.   inv, percent, backslash
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.